how to change pgeditor background ?


webdomain - 26 Janvier 2010, 19:57


Hi, can you tell me how to change background in pgeditor ?
see images for details


https://doc-0o-88-docs.googleu...jg4M2ViZWUzYjQy

and

https://doc-0c-88-docs.googleu...WFjNTQxMzk0NmJj


jchouix - 26 Janvier 2010, 23:02


hi webdomain,

:fsb2_arrow: For pgeditor :
You edit the css file of your skin in the directory skin/your_skin_name/ and search this code:

Code (Sélectionner le code)
div #toolbarIcons_ptxt {
 color: inherit;
 background-color: #089EDE;
}
div #toolbarSmileys_ptxt {
 color: inherit;
 background-color: #089EDE;
}

You write :
Code (Sélectionner le code)
div #toolbarIcons_ptxt {
 color: inherit;
 background-color: silver;
}
div #toolbarSmileys_ptxt {
 color: inherit;
 background-color: silver;
}


Note : an another solution is to delete this code in the css file of the skin :
Code (Sélectionner le code)
div #toolbarIcons_ptxt {
 color: inherit;
 background-color: #089EDE;
}
div #toolbarSmileys_ptxt {
 color: inherit;
 background-color: #089EDE;
}

and then, modify directly the css file named 'pgeditor.css' in the directory inc/config_pgeditor_guppy/style/
at the line 35 : background-color:#ECE9D8;
and the line 256 : background-color:#ECE9D8;



:fsb2_arrow: For minieditortextarea :
You edit this file : admin/editors/guppy_config/minieditortextarea_config.inc
and you modify the code of the line 46 :
Code (Sélectionner le code)
$colorFondMenu = $titre[1];  //couleur de fond du miniéditeur
like this :
Code (Sélectionner le code)
$colorFondMenu = 'silver';  //couleur de fond du miniéditeur


Best regards


webdomain - 27 Janvier 2010, 9:05


Manythanks it is okay !!!